home *** CD-ROM | disk | FTP | other *** search
- // csendDlg.h : ヘッダー ファイル
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CCsendDlg dialog
-
- class CCsendDlg : public CDialog
- {
- // 構築
- public:
- CCsendDlg(CWnd* pParent = NULL); // 標準のコンストラクタ
-
- // Dialog Data
- //{{AFX_DATA(CCsendDlg)
- enum { IDD = IDD_CSEND_DIALOG };
- CListBox m_CList;
- //}}AFX_DATA
-
- // ClassWizard は仮想関数を生成しオーバーライドします。
- //{{AFX_VIRTUAL(CCsendDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV のサポート
- //}}AFX_VIRTUAL
-
- // インプリメンテーション
- protected:
- void ChangeMessage( void );
- void DeleteString(void);
- void SendClipBoard( CString& text );
- HICON m_hIcon;
-
- // 生成されたメッセージ マップ関数
- //{{AFX_MSG(CCsendDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- afx_msg void OnSelchangeClist();
- afx_msg void OnSize(UINT nType, int cx, int cy);
- afx_msg void OnDblclkClist();
- afx_msg void OnClose();
- virtual void OnOK();
- virtual void OnCancel();
- afx_msg void OnDestroy();
- afx_msg LRESULT OnNotifyIconIvents( WPARAM wParam, LPARAM lParam );
- afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
- afx_msg void OnAddstring();
- afx_msg void OnChange();
- afx_msg void OnDeletestring();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private:
- NOTIFYICONDATA m_stNtfyIcon;
- RECT rect;
- CString m_SelText;
- };
-
-